#ifndef _G_H_ #define _G_H_ #include "f.h" namespace top_sekret{ class rocket{ private: int thrust; public: rocket():thrust(0){} rocket(int t):thrust(t){} int getThrust() const; void setThrust(int ); }; } #endif